2008-02-12 Matthias Clasen <mclasen@redhat.com>
* tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch)
svn path=/trunk/; revision=19526
+2008-02-12 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/prop-editor.c: Fix a memory leak (#515039, Christian Persch)
+
2008-02-12 Matthias Clasen <mclasen@redhat.com>
* tests/testmerge.c: Fix a memory leak (#515038, Christian Persch)
specs = g_object_class_list_properties (class, &n_specs);
}
- if (n_specs == 0)
+ if (n_specs == 0) {
+ g_free (specs);
return NULL;
+ }
table = gtk_table_new (n_specs, 2, FALSE);
gtk_table_set_col_spacing (GTK_TABLE (table), 0, 10);